home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000376_news@columbia.edu_Tue Nov 14 00:29:50 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  7KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15555
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Tue, 14 Nov 1995 03:21:23 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id DAA06432 for kermit.misc@watsun; Tue, 14 Nov 1995 03:21:21 -0500
  4. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!spool.mu.edu!howland.reston.ans.net!swrinde!newsfeed.internetmci.com!news.kei.com!world!indra.com!coopnews.coop.net!news.den.mmc.com!news.vf.mmc.com!eng112!tcmayo
  5. From: tcmayo%eng112@apakabar.cc.columbia.edu (Tom Mayo N1RMU)
  6. Newsgroups: comp.dcom.lans.ethernet,comp.protocols.kermit.misc
  7. Subject: Ethernet / Kermit
  8. Date: 14 Nov 1995 00:29:50 GMT
  9. Organization: Lockheed Martin Corp, Valley Forge PA
  10. Lines: 140
  11. Message-Id: <488ntu$or1@morgan.vf.mmc.com>
  12. Nntp-Posting-Host: eng112.psf.ge.com
  13. X-Newsreader: TIN [version 1.2 PL2]
  14. Xref: news.columbia.edu comp.dcom.lans.ethernet:21361 comp.protocols.kermit.misc:4110
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. Hello-
  18.  
  19. I am trying to add a low-tech node to my home LAN.  My downstairs
  20. neighbor and I already run two Linux boxes on our Ethernet with no
  21. problems.  I want to add my 286 to the network.  It has a 3COM 3C503
  22. and I have installed the Crynwr packet driver for this card with cmd
  23. line 3c503 0x78.  It seems to work ok with TELNETD, but what I would
  24. like is to run Kermit so I can connect to the other nodes.
  25.  
  26. Our little network is 10.0.0.0 with fang at 10.0.0.1 and tuning at
  27. 10.0.0.2.  Communication between fang and tuning is superfine.  The
  28. 286 is cheesebox at 10.0.0.3.  I am using the MSCUSTOM.INI file at the
  29. end of the message on cheesebox.  The problem is that I get the following
  30. message when I try to connect from cheesebox at the Kermit prompt:
  31.  
  32. resolving addres of host 10.0.0.1...
  33. unable to ARP resolve 10.0.0.1
  34. unable to contact the host
  35. the host may be down or a gateway may be needed
  36. ?cannot start the connection
  37.  
  38. When I run pkttraf (came with Crynwr) I see the Ethernet addresses
  39. of both fang and cheesebox as I do a ping or traceroute from fang,
  40. but when I run Kermit, it just sits there not echoing the ping or acking
  41. that it exists at all.
  42.  
  43. PLEASE HELP!
  44.  
  45. Here is my MSCUSTOM.INI:
  46.  
  47.  
  48. GOTO GO ; FILE MSCUSTOM.INI
  49. ;
  50. ; SAMPLE individual customization file for MS-DOS Kermit 3.14.
  51. ; Make any desired changes, and then store this file in the same directory
  52. ; as your MSKERMIT.INI initialization file.
  53. ;
  54. ; Author: Christine M. Gianone, Sep 1992
  55. ; Revised: Jun 1993 for version 3.13
  56. ; Revised: Jan 1995 for version 3.14
  57. ;
  58. :GO
  59. if < \v(version) 314 -
  60.   stop 1 -
  61.   This MSCUSTOM.INI file may be used only with MS-DOS Kermit 3.14 or later.
  62.  
  63. echo Executing SAMPLE MS-DOS Kermit customization file, \v(cmdfile)...
  64. echo Please edit this file to suit your needs and preferences.
  65.  
  66. COMMENT - Autodownload and autoupload are disabled by default, see KERMIT.UPD.
  67. ;
  68. check term
  69. if fail forward XFER
  70. ec
  71. ec Auto-upload and -download disabled.
  72. ec Use SET TERMINAL APC ON to enable.
  73. ec
  74. ; set terminal apc on           ; Uncomment to enable this feature.
  75.  
  76. :XFER
  77. COMMENT - Sample file transfer preferences.
  78. ;
  79. set block 3                     ; 16-bit CRC for strong error checking.
  80. set window 4                    ; 4 Window slots.
  81. set receive packet-length 2000  ; Packet length is governed by receiver.
  82. set control prefix all          ; Prefix all control characters.
  83.  
  84. ; Macros for transferring files in text and binary mode...
  85. ;
  86. define bsend binary, send \%1 \%2  ; SEND in binary mode
  87. define tsend text,   send \%1 \%2  ; SEND in text mode
  88. define bget  binary, get \%1  ; GET in binary mode
  89. define tget  text,   get \%1  ; GET in text mode
  90.  
  91. COMMENT - TCP/IP network configuration.
  92. ;
  93. check tcp
  94. if fail forward notcp
  95.  
  96. ; If your site has a BOOTP server and your PC is registered in it, the only
  97. ; command you need here is the following SET TCP/IP ADDRESS BOOTP command.
  98. ; You will also need the SET TCP/IP DOMAIN command if your BOOTP server is
  99. ; not at RFC1395 level and/or does not provide your PC's hostname (substitute
  100. ; your PC's real hostname for FOO.BAR.EDU).
  101. ;
  102. ; set tcp address BOOTP                 ; BOOTP will tell me my IP address
  103. ; SET TCP/IP DOMAIN MAYO.ORG       ; My network's domain name
  104.  
  105. ; Otherwise, to use TCP/IP connections, replace the dummy values below with
  106. ; appropriate values for your network (DON'T MAKE THEM UP! - consult your
  107. ; network manager) and uncomment the SET TCP/IP commands.
  108. ;
  109. SET TCP/IP ADDRESS 10.0.0.3  ; My PC's numeric IP address
  110. SET TCP/IP SUBNETMASK 255.255.255.0 ; My physical network's subnet mask
  111. SET TCP/IP DOMAIN MAYO.ORG       ; My PC's fully qualified domain name
  112. ; SET TCP/IP GATEWAY 123.123.123.1    ; My network gateway's IP address
  113. ; SET TCP/IP PRIMARY-NAMESERVER 123.123.123.2   ; Primary nameserver's address
  114. ; SET TCP/IP SECONDARY-NAMESERVER 123.123.123.3 ; fallback nameserver address
  115. SET TCP/IP BROADCAST 255.255.255.255 ; My network's broadcast address
  116.  
  117. ; Sample macro that shows how to use the session manager to access
  118. ; a particular host, called MYHOST.  Make one of these for each host you
  119. ; commonly access.  The first time you type "myhost" you'll get a new
  120. ; connection (and a session number), and subsequent times, the same session
  121. ; will be continued.  This allows for easy session-switching from the
  122. ; MS-Kermit> prompt.  You can also use Alt-n (\KnextSession) to toggle among
  123. ; sessions while in CONNECT mode. The TELNET macro is defined in MSKERMIT.INI.
  124. ;
  125. define myhost -
  126.  telnet myhost 23 vt320,-
  127.  if success assign myhost telnet \v(session)
  128.  
  129. :NOTCP
  130. ;
  131. ; Add your own macro definitions, key settings, color selections, etc, here,
  132. ; for example:
  133.  
  134. ; set modem hayes         ; Change this to your modem type, see MODEMS\READ.ME.
  135. ; set printer nul       ; Uncomment this if you do NOT have a printer.
  136. set port 1              ; Change if desired.  If COM3 or 4, read KERMIT.BWR.
  137. set speed 9600          ; Change if desired.
  138. set flow xon/xoff       ; Change to RTS/CTS if modem is configured for this.
  139. check term
  140. if fail end 0
  141. set term type vt100     ; Change this if desired.
  142. set term bytesize 8     ; Change to 8 if desired.
  143. ;set term color 0 34 47  ; Terminal screen fore- and background colors.
  144. ;set term under 0 33 47  ; Underscore simulation colors.
  145.  
  146. ; take \v(inidir)keyboard\vt300.ini ; Uncomment for full VT320 key mappings.
  147.  
  148. ; (End of MSCUSTOM.INI)
  149.  
  150.  
  151. Thank you for reading this.
  152.  
  153. --
  154. Tom Mayo  E-MAIL: WORK: tcmayo@mntr02.psf.ge.com HOME: mayo@adams.berk.net
  155. N1RMU     PACKET: N1RMU @ WA2UMX.#ENY.NY.US.NA  ..  ._.. .. _._ .  _._. .__
  156. For PGP public key, e-mail me at work with subject send_pgp_key.